home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Suzy B Software 2
/
Suzy B Software CD-ROM 2 (1994).iso
/
extras
/
programm
/
gemfsc19
/
gemfsc19.lzh
/
GEMFUNCS
/
FRMPRTF.C
< prev
next >
Wrap
C/C++ Source or Header
|
1993-02-01
|
554b
|
26 lines
/**************************************************************************
* FRMPRTF.C - frm_printf() function.
*************************************************************************/
#include "gemfintl.h"
#ifdef GEMFAST_PROTOS
short frm_printf(long options, char *buttons, char *fmt, ...)
#else
short frm_printf(options, buttons, fmt)
long options;
char *buttons;
char *fmt;
#endif
{
va_list args;
short rv;
va_start(args, fmt);
rv = frm_vprintf(options, buttons, fmt, args);
va_end(args);
return rv;
}